Adding some more judges, here and there.
[and.git] / COCI / 2010-2011 / Contest #1 - 22.10.2010 / matrix / gen.rb
blob6ae73978eabfa7722f101dfe417dd579eacb1e0e
1 n = 400
2 puts n
3 n.times do
4   n.times do
5     d = rand(1001) * (rand(2) == 0 ? +1 : -1)
6     print "#{d} "
7   end
8   puts
9 end